home *** CD-ROM | disk | FTP | other *** search
/ Beginning Mac Programming / Beginning Mac Programming.bin / pc / Open Me for REALbasic 3 / REALbasic 3.2 / Goodies / 3rd Party Demos / 3rd Party Plugins / Misc / PEVocoder 1.0 (PPC) / PEVocodePlugin Source Code / aiff.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-09-12  |  673 b   |  19 lines

  1. /******************************************************************************
  2.  * $Id: aiff.h,v 1.2 1998/09/13 00:21:18 emanuel Exp $
  3.  * Copyright (C) 1998 Emanuel Borsboom <emanuel@zerius.com>
  4.  * Permission is granted to make any use of this code subject to the condition
  5.  * that all copies contain this notice and an indication of what has been
  6.  * changed.
  7.  *****************************************************************************/
  8.  
  9. #ifndef AIFF_H_INCLUDED
  10. #define AIFF_H_INCLUDED
  11.  
  12. #include "wave.h"
  13.  
  14. WAVE_FILE *aiff_open(FILE *fp, WAVE_INFO *info);
  15. WAVE_FILE *aiff_create(FILE *fp, WAVE_INFO *info);
  16. void aiff_close(WAVE_FILE *file);
  17.  
  18. #endif /* AIFF_H_INCLUDED */
  19.